home *** CD-ROM | disk | FTP | other *** search
/ The Learning Curve / The Learning Curve (Weird Science, 1996).iso / electronics / analog_emulator / listplot / @alp@ < prev    next >
Encoding:
Text File  |  1995-07-22  |  941 b   |  55 lines

  1. .k file/a,plt,plx,ply,pld,plo,plg,plxt,plyt,plr,plb
  2.  
  3. ; Invoke this shell script via ACES
  4. ;
  5. ; lineplot file [ title [ xlabel [ylabel [ device
  6. ;               [ plo [ plg  [ plxt [ plyt [ plr [ plb ] ] ] ] ] ] ] ] ]
  7. ;
  8. ; where file file contains the data to be plotted
  9.  
  10. .def pld "amiga"
  11. .def plt "ACES Plot"
  12. .def plx "X-Axis"
  13. .def ply "Y-Axis"
  14. .def plo "*"
  15. .def plg "No"
  16. .def plxt "Automatic"
  17. .def plyt "Automatic"
  18. .def plb "lb"
  19. .def plr "All"
  20.  
  21.  
  22. IF "<pld>" EQ "amiga"
  23.  
  24. lp:ListPlot +
  25.   "UseInputFile=<file>" +
  26.   "PlotTitle=<plt>" +
  27.   "PlotDevice=<pld>" +
  28.   "Gridding=<plg>" +
  29.   "XLabel=<plx>" +
  30.   "YLabel=<ply>" +
  31.   "XTick=<plxt>" +
  32.   "YTick=<plyt>" +
  33.   "Boxed=<plb>" +
  34.   "Range=<plr>"
  35.  
  36. ELSE
  37.  
  38. lp:ListPlot +
  39.   "UseInputFile=<file>" +
  40.   "UseOutputFile=<plo>" +
  41.   "PlotTitle=<plt>" +
  42.   "PlotDevice=<pld>" +
  43.   "Gridding=<plg>" +
  44.   "XLabel=<plx>" +
  45.   "YLabel=<ply>" +
  46.   "XTick=<plxt>" +
  47.   "YTick=<plyt>" +
  48.   "Boxed=<plb>" +
  49.   "Range=<plr>"
  50.  
  51.  
  52.  
  53. ENDIF
  54.  
  55.